home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / _archive / archivrs / msdos / bzip.zoo / readme < prev    next >
Text File  |  1992-07-18  |  4KB  |  114 lines

  1. bzip  -  backup files and directories to diskdrive using pkzip
  2. rzip  -  restore zipfiles split by bzip
  3.  
  4. ------------------------------------------------------------------------
  5.  
  6. DESCRIPTION
  7.  
  8. BZIP is a little utility that uses (PK)ZIP (not included) to compress
  9. files or complete directories and then copies the created zipfile(s) to
  10. drive A: or B:, splitting the file if necessary. Of course, this will
  11. save you backup disks but it is considerably slower than a direct copy.
  12.  
  13. BZIP is functionally similar to the combination PKZIP, BACKUP and some
  14. kind of control over these programs (e.g., a batch file).
  15.  
  16. Advantages of BZIP over such a combination are:
  17. - BZIP calls you only when really necessary
  18. - you can access the stored zipfiles directly
  19.  
  20. Caveats:
  21. - you need enough space on some drive or partition to create the largest
  22.   zipfile.
  23.  
  24. RZIP concatenates the parts of a zipfile that were split by BZIP over 2
  25. or more disks. There is no other support for restoring backups. But you
  26. do not need to do more than calling PKUNZIP -d to restore each directory.
  27. BZIP writes a table of contents on the last backup disk, which you can
  28. use to find particular zipfiles.
  29.  
  30. Turbo-C Sources included. No warranty. Public domain.
  31.  
  32. ------------------------------------------------------------------------
  33.  
  34. Usage:
  35.  
  36. bzip  [no arguments]
  37. -   creates a zipfile for each directory in the current directory
  38.     and copies it to drive A.
  39. -   creates one zipfile, called ROOT.ZIP, that contains all the files
  40.     in the current directory and copies it to drive A
  41.  
  42. bzip B:
  43. -   as above, but copy to drive B:
  44.  
  45. bzip -d <directoryname>
  46. -   as above, but use directoryname to create temporary zipfiles.
  47.     This should not be the backupdrive!
  48.  
  49. bzip [name ...]
  50. - create a zipfile for each name (usually a directory)
  51.   and copy it to the backup disk.
  52.  
  53.  
  54. rzip drive:name
  55. -   restore a zipfile (in the current directory) from the named drive.
  56.  
  57. Zipfiles are named by stripping off the extension of the original
  58. directory name (if any) and adding the extension .ZIP
  59.  
  60. If a zipfile is split, the parts on the backup disks get the extension
  61. .p[number]. The last part gets the extension .-[number]. RZIP recognises these
  62. extensions.
  63.  
  64. In order to restore a directory use PKUZIP -d zipname. The -d option
  65. lets PKUNZIP create the directory names stored in the zipfile
  66.  
  67. ------------------------------------------------------------------------
  68.  
  69. INSTALLATION
  70.  
  71. Put BZIP.EXE and RZIP.BAT and PKZIP.EXE somewhere where DOS can find
  72. it.
  73.  
  74. Depending on your operating system, set the COMPSPEC environment
  75. variable to the full path and name of COMMAND.COM. Normally this is
  76. already done. Consult your DOS manual if necessary.
  77.  
  78. If you have ZIP.EXE instead of PKZIP.EXE, create a batch file PKZIP.BAT
  79. that contains the following line:
  80.  
  81.       ZIP %1 %2 %3 %4 %5 %6 %7 %8 %9
  82.  
  83. BZIP allows you to format disks when a new disk is needed. BZIP calls
  84. the standard dos utility FORMAT.COM to do this. It gives the name of
  85. the backup drive as an argument. If you prefer another format utility,
  86. you may be able to create a batch file FORMAT.BAT that contains the
  87. line:
  88.  
  89.       NEWFORMATCOMMAND  %1 plus any other options
  90.  
  91. ------------------------------------------------------------------------
  92.       
  93. WARNINGS:
  94.  
  95. - when you use bzip to backup your harddisk, be sure that you make a copy
  96.   of  RZIP.BAT, BZIP.EXE and PKUNZIP.EXE on a separate disk, so that
  97.   you can restore your backup when your harddisk crashes.
  98.  
  99. - make sure you do not have any existing files named <name>.zip where
  100.   <name> is also the name of a directory you want to backup. PKZIP will
  101.   overwrite the existing file.
  102.  
  103. - no attempt is made to repair disk errors. You just have to start again.
  104.  
  105. - bzip deletes anything on the backup disks
  106.  
  107. - although this utility functions well on my system, which is pretty
  108.   standard, it has not been tested on any other system. You must consider
  109.   this to have the status of a beta-release. Please try it out and also
  110.   try to restore some directories before you trust your valuable information
  111.   to it.
  112.  
  113.  
  114.